From: Namhyung Kim Date: Sat, 16 Oct 2010 03:40:33 +0000 (+0900) Subject: fs/buffer.c: remove duplicated assignment on b_private X-Git-Tag: archive/raspbian/4.9.13-1+rpi1~10^2~16337^2~39 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=8358e7d71e712d3bd4e20ecf23e6fd7480c83684;p=linux-4.9.git fs/buffer.c: remove duplicated assignment on b_private bh->b_private is initialized within init_buffer(), thus the assignment should be redundant. Remove it. Signed-off-by: Namhyung Kim Signed-off-by: Al Viro --- diff --git a/fs/buffer.c b/fs/buffer.c index a7b8f3c59a4e..74566c6f67b1 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -905,7 +905,6 @@ try_again: bh->b_state = 0; atomic_set(&bh->b_count, 0); - bh->b_private = NULL; bh->b_size = size; /* Link the buffer to its page */